home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / RGASM.RAR / ASMCODE.EXE / CHAPT7 / SETKBD.ASM < prev    next >
Encoding:
Assembly Source File  |  1993-05-10  |  419 b   |  13 lines

  1. ;
  2. ;       Program SetKbd ( Chapter 7 )
  3. ;
  4. .model tiny
  5. .code
  6.     mov     ax,0305h        ; AH - function 03, AL - subfunction 05
  7.     mov     bx,0            ; BH - delay (0 - 3 , 0 for smallest)
  8.                 ; BL - rate (0 - 1Fh , 0 for fastest)
  9.     int     16h             ; BIOS interrupt - keyboard service
  10.     mov     ax,4C00h        ; 4C - terminate process, 00 - return code
  11.     int     21h             ; DOS service call
  12.     end
  13.